EditorCommand

Provides the supported commands that can be executed in a Frame.

Types

Link copied to clipboard
enum Name
The list of command names.

Functions

Link copied to clipboard
Returns a command that allows setting the given background color for the selected text in a WYSIWYG editor.
open fun backgroundColor(colorName: String): EditorCommand
Returns a command that allows setting the given background colorName for the selected text in a WYSIWYG editor.
Link copied to clipboard
open fun bold(): EditorCommand
Returns a command that allows making the selected text bold in a WYSIWYG editor.
Link copied to clipboard
open fun copy(): EditorCommand
Returns a command that allows copying the selected text in the frame.
Link copied to clipboard
Returns a command that allows making the link to the specified URL in a WYSIWYG editor.
Link copied to clipboard
open fun cut(): EditorCommand
Returns a command that allows cutting the selected text in a text field, text area or WYSIWYG editor.
Link copied to clipboard
open fun delete(): EditorCommand
Returns a command that allows deleting the selected text in a text field, text area or WYSIWYG editor.
Link copied to clipboard
Returns a command that allows deleting character before the caret position in a text field, text area or WYSIWYG editor.
Link copied to clipboard
Returns a command that allows deleting character after the caret position in a text field, text area or WYSIWYG editor.
Link copied to clipboard
Returns a command that allows deleting character from the caret position to the beginning of line in a text field, text area or WYSIWYG editor.
Link copied to clipboard
Returns a command that allows deleting a word before the caret position in a text field, text area or WYSIWYG editor.
Link copied to clipboard
Returns a command that allows deleting a word after the caret position in a text field, text area or WYSIWYG editor.
Link copied to clipboard
open fun findText(text: String): EditorCommand
Returns a command that allows searching for the given text occurrence from the current caret position in the frame.
Link copied to clipboard
open fun fontName(fontName: FontName): EditorCommand
Returns a command that allows setting the given fontName for the selected text in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows setting the given fontSize for the selected text in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows setting the given foreground color for the selected text in a WYSIWYG editor.
open fun foregroundColor(colorName: String): EditorCommand
Returns a command that allows setting the given foreground colorName for the selected text in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows disabling the spelling mistakes highlighting in a text area or a WYSIWYG editor.
Link copied to clipboard
open fun indent(): EditorCommand
Returns a command that allows making indent of the selected text in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows inserting the given html content in a WYSIWYG editor.
Link copied to clipboard
open fun insertImage(imageSrc: String): EditorCommand
Returns a command that allows inserting an image with the given imageSrc in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows inserting a new line in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows inserting an ordered list in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows inserting a paragraph in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows inserting a tab character in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows inserting the given text content in a WYSIWYG editor or a text field.
Link copied to clipboard
Returns a command that allows inserting an unordered list in a WYSIWYG editor.
Link copied to clipboard
open fun italic(): EditorCommand
Returns a command that allows making the selected text italic in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows center justification the selected text in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows full justification the selected text in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows left justification the selected text in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows right justification the selected text in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows moving the caret position at one page down in a text area or a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows moving the caret position at one page up in a text area or a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows moving a word to the beginning of line in a text area or a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows moving a word to the beginning of line and modifying selection in a text area or a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows moving a word to the end of line in a text area or a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows moving a word to the end of line and modifying selection in a text area or a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows moving a word left in a text area or a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows moving a word left and modifying selection in a text area or a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows moving a word right in a text area or a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows moving a word right and modifying selection in a text area or a WYSIWYG editor.
Link copied to clipboard
Returns the Name of the command.
Link copied to clipboard
Returns a command that allows making outdent of the selected text in a WYSIWYG editor.
Link copied to clipboard
open fun paste(): EditorCommand
Returns a command that allows pasting content of the clipboard in a text field, text area or a WYSIWYG editor.
Link copied to clipboard
open fun redo(): EditorCommand
Returns a command that allows reversing the last undo action.
Link copied to clipboard
Returns a command that allows removing all styles of the selected text (bold, italic, etc.) in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows scrolling one line down.
Link copied to clipboard
Returns a command that allows scrolling one line up.
Link copied to clipboard
Returns a command that allows scrolling a page backward.
Link copied to clipboard
Returns a command that allows scrolling a page forward.
Link copied to clipboard
Returns a command that allows scrolling content to the beginning of the document in the frame.
Link copied to clipboard
Returns a command that allows scrolling content to the end of the document in the frame.
Link copied to clipboard
Returns a command that allows selecting all text in the frame or the currently focused text field, text area or a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows selecting a line at the caret position in a text area or a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows selecting the whole paragraph at the caret position in a text area or a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows selecting the whole sentence at the caret position in a text area or a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows selecting the word at the caret position in a text field, text area or a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows making the selected text strikethrough in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows making the selected text subscript in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows making the selected text superscript in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows toggling bold style for the selected text in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows toggling italic style for the selected text in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows toggling underline style for the selected text in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows underlying the selected text in a WYSIWYG editor.
Link copied to clipboard
open fun undo(): EditorCommand
Returns a command that allows reversing the last action.
Link copied to clipboard
open fun unlink(): EditorCommand
Returns a command that allows removing the link from the text in a WYSIWYG editor.
Link copied to clipboard
Returns a command that allows clearing the current selection in a frame.
Link copied to clipboard
open fun value(): String
Returns a string that represents the command value.